Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/016-drink water

style.css cody/solygambas/html-css-javascript-projects/016-drink water/style.css
137 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

:root {
--border-color: #144fc6;
--fill-color: #6ab3f8;
}

* {
drink water cody/solygambas/html-css-javascript-projects/016-drink water/index.html
355 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Drink Water</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/016-drink water/script.js
196 Views
0 Comments
const smallCups = document.querySelectorAll(".cup-small");
const liters = document.getElementById("liters");
const percentage = document.getElementById("percentage");
const remained = document.getElementById("remained");

const updateBigCup = () => {
const fullCups = document.querySelectorAll(".cup-small.full").length;
const totalCups = smallCups.length;